* sendmail.el (mail-setup): Don't insert "--\n" before the
authorJim Blandy <jimb@redhat.com>
Mon, 3 May 1993 03:40:10 +0000 (03:40 +0000)
committerJim Blandy <jimb@redhat.com>
Mon, 3 May 1993 03:40:10 +0000 (03:40 +0000)
signature.  If they want it, they can put it in their .signature
file.

lisp/mail/sendmail.el

index e5a463ba746ea1837a1dfa11bb0093b9874c9919..4c3da7b2e54a417f678b077a3df526ae20702d13 100644 (file)
@@ -153,9 +153,7 @@ so you can edit or delete these lines.")
     ;; Insert the signature.
     (cond ((eq mail-signature t)
           (if (file-exists-p "~/.signature")
-              (progn
-                (insert "--\n")
-                (insert-file-contents "~/.signature"))))
+              (insert-file-contents "~/.signature")))
          (mail-signature
           (insert mail-signature)))
     (goto-char (point-max))